Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / Worksheet Class / SetValue Method / SetValue(Int32,Int32,Object[,]) Method
Row index of the start of the range of cells
Column index of the start of the range of cells
Two-dimensional object array[row,column] that contains the values


In This Topic
    SetValue(Int32,Int32,Object[,]) Method
    In This Topic
    Sets an object array into a specified range of cells.
    Syntax
    'Declaration
     
    
    Public Overloads Function SetValue( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal values(,) As Object _
    ) As Boolean
    'Usage
     
    
    Dim instance As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim values() As Object
    Dim value As Boolean
     
    value = instance.SetValue(row, column, values)
    public bool SetValue( 
       int row,
       int column,
       object[,] values
    )

    Parameters

    row
    Row index of the start of the range of cells
    column
    Column index of the start of the range of cells
    values
    Two-dimensional object array[row,column] that contains the values
    See Also